home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 48 / MOBICLIC 48.ISO / pc / DATA / COMMUNS / GENERIC.DIR / 00005_Script_5 < prev    next >
Text File  |  2002-10-17  |  312b  |  20 lines

  1. on mouseUp me
  2.   desinstall
  3.   sprite(8).visible = 0
  4. end
  5.  
  6. on mouseEnter
  7.   H = sprite(8).locH
  8.   V = sprite(8).locV
  9.   sprite(8).locH = H+3
  10.   sprite(8).locV = V+3
  11.   cursor 280
  12. end
  13.  
  14. on mouseLeave
  15.   H = sprite(8).locH
  16.   V = sprite(8).locV
  17.   sprite(8).locH = H-3
  18.   sprite(8).locV = V-3
  19.   cursor -1
  20. end